home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xarchie-2.0.9 / debug.h < prev    next >
C/C++ Source or Header  |  1995-06-18  |  509b  |  20 lines

  1. /*
  2.  * debug.h : Macros for debug messages
  3.  *
  4.  * George Ferguson, ferguson@cs.rochester.edu, 23 Apr 1993.
  5.  */
  6.  
  7. #ifdef DEBUG
  8. #define DEBUG0(S)        fprintf(stderr,S)
  9. #define DEBUG1(S,A1)        fprintf(stderr,S,A1)
  10. #define DEBUG2(S,A1,A2)        fprintf(stderr,S,A1,A2)
  11. #define DEBUG3(S,A1,A2,A3)    fprintf(stderr,S,A1,A2,A3)
  12. #else
  13. /*SUPPRESS 558*//* Saber: condition always false */
  14. /*SUPPRESS 530*//* Saber: empty body of loop */
  15. #define DEBUG0(S)
  16. #define DEBUG1(S,A1)
  17. #define DEBUG2(S,A1,A2)
  18. #define DEBUG3(S,A1,A2,A3)
  19. #endif
  20.